home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / source / open_append.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-15  |  158 b   |  7 lines

  1. #include <sys/types.h>
  2. #include <fcntl.h>
  3. #include "open.h"
  4.  
  5. int open_append(fn) char *fn;
  6. { return open(fn,O_WRONLY | O_NDELAY | O_APPEND | O_CREAT,0600); }
  7.